home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / cbibcode.arc / RAISE.C < prev    next >
Encoding:
C/C++ Source or Header  |  1991-08-05  |  137 b   |  8 lines

  1. /* raise.c --- BIBLE p. 92 */
  2. #include <stdio.h>
  3. #include <signal.h>
  4. main()
  5. {
  6.     printf("Raising SIGABRT...\n");
  7.     raise(SIGABRT);
  8. }